home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / POV302.ZIP / pov302 / pov3demo / other / pov / switch3 < prev    next >
Text File  |  1995-11-08  |  753b  |  40 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Demonstrates #switch #case and #range directives
  3. //
  4. // If +k0 you get red pigment
  5. // If +k1 you get green pigment.
  6. // If +k is any value from 2 through 4 inclusive, you get yellow pigment.
  7. // All others are blue.
  8.  
  9. #version 3.0
  10. global_settings { assumed_gamma 2.2 }
  11.  
  12. #include "colors.inc"
  13.  
  14. camera {
  15.    location  <0, 20,-100>
  16. }
  17.  
  18. plane { y, -10
  19.    pigment {White}
  20.    finish {ambient 0.2 diffuse 0.8}
  21. }
  22.  
  23. sphere { <0, 25, 0>, 40
  24.    #switch (clock)
  25.      #case (0)
  26.        pigment {Red}
  27.        #break
  28.      #range (2,4)
  29.        pigment {Yellow}
  30.        #break
  31.      #case (1)
  32.        pigment {Green}
  33.        #break
  34.      #else
  35.        pigment {Blue}
  36.    #end
  37. }
  38.  
  39. light_source {<100, 120, -200> colour White}
  40.